Micron Document
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
| SparkN0de-git | SparkN0de |
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------


Commit fee9e3356259c967b89373cf94deec01e6a5e6b3


Parents : 9d5d03a
Author : Ivan <ivan@quad4.io>
Signature : Signature validation error
Date : 2026-05-09T19:07:11-05:00

refactor(ui): reorder sidebar with telephone below messages

Changes

2 files changed, 26 insertions(+), 26 deletions(-)


Diff

diff --git a/meshchatx/src/frontend/components/App.vue b/meshchatx/src/frontend/components/App.vue
index 26238d08..38a6a0e1 100644
--- a/meshchatx/src/frontend/components/App.vue
+++ b/meshchatx/src/frontend/components/App.vue
@@ -225,16 +225,16 @@
</SidebarLink>
</li>
- <!-- nomad network -->
+ <!-- telephone -->
<li>
- <SidebarLink :to="{ name: 'nomadnetwork' }" :is-collapsed="isSidebarCollapsed">
+ <SidebarLink :to="{ name: 'call' }" :is-collapsed="isSidebarCollapsed">
<template #icon>
<MaterialDesignIcon
- icon-name="earth"
+ icon-name="phone"
class="w-6 h-6 text-gray-700 dark:text-gray-200"
/>
</template>
- <template #text>{{ $t("app.nomad_network") }}</template>
+ <template #text>{{ $t("app.audio_calls") }}</template>
</SidebarLink>
</li>
@@ -251,16 +251,16 @@
</SidebarLink>
</li>
- <!-- banished -->
+ <!-- nomad network -->
<li>
- <SidebarLink :to="{ name: 'blocked' }" :is-collapsed="isSidebarCollapsed">
+ <SidebarLink :to="{ name: 'nomadnetwork' }" :is-collapsed="isSidebarCollapsed">
<template #icon>
<MaterialDesignIcon
- icon-name="gavel"
+ icon-name="earth"
class="w-6 h-6 text-gray-700 dark:text-gray-200"
/>
</template>
- <template #text>{{ $t("banishment.title") }}</template>
+ <template #text>{{ $t("app.nomad_network") }}</template>
</SidebarLink>
</li>
@@ -290,16 +290,16 @@
</SidebarLink>
</li>
- <!-- telephone -->
+ <!-- tools -->
<li>
- <SidebarLink :to="{ name: 'call' }" :is-collapsed="isSidebarCollapsed">
+ <SidebarLink :to="{ name: 'tools' }" :is-collapsed="isSidebarCollapsed">
<template #icon>
<MaterialDesignIcon
- icon-name="phone"
- class="w-6 h-6 text-gray-700 dark:text-gray-200"
+ icon-name="wrench"
+ class="size-6 text-gray-700 dark:text-gray-200"
/>
</template>
- <template #text>{{ $t("app.audio_calls") }}</template>
+ <template #text>{{ $t("app.tools") }}</template>
</SidebarLink>
</li>
@@ -332,16 +332,16 @@
</SidebarLink>
</li>
- <!-- tools -->
+ <!-- banished -->
<li>
- <SidebarLink :to="{ name: 'tools' }" :is-collapsed="isSidebarCollapsed">
+ <SidebarLink :to="{ name: 'blocked' }" :is-collapsed="isSidebarCollapsed">
<template #icon>
<MaterialDesignIcon
- icon-name="wrench"
- class="size-6 text-gray-700 dark:text-gray-200"
+ icon-name="gavel"
+ class="w-6 h-6 text-gray-700 dark:text-gray-200"
/>
</template>
- <template #text>{{ $t("app.tools") }}</template>
+ <template #text>{{ $t("banishment.title") }}</template>
</SidebarLink>
</li>

diff --git a/meshchatx/src/frontend/components/CommandPalette.vue b/meshchatx/src/frontend/components/CommandPalette.vue
index 509d3de3..8526e4a1 100644
--- a/meshchatx/src/frontend/components/CommandPalette.vue
+++ b/meshchatx/src/frontend/components/CommandPalette.vue
@@ -134,6 +134,14 @@ export default {
type: "navigation",
route: { name: "messages" },
},
+ {
+ id: "nav-call",
+ title: "nav_call",
+ description: "nav_call_desc",
+ icon: "phone",
+ type: "navigation",
+ route: { name: "call" },
+ },
{
id: "nav-nomad",
title: "nav_nomad",
@@ -158,14 +166,6 @@ export default {
type: "navigation",
route: { name: "paper-message" },
},
- {
- id: "nav-call",
- title: "nav_call",
- description: "nav_call_desc",
- icon: "phone",
- type: "navigation",
- route: { name: "call" },
- },
{
id: "nav-settings",
title: "nav_settings",


──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────